All Questions
Tagged with phpframeworks
49 questions
-1votes
1answer
84views
How to write package for two frameworks
I'm developing a package for Laravel & Lumen in the same code base, but I encountered some problems. Well, in the beginning, I thought it could have the same code and work for both frameworks, ...
0votes
2answers
251views
For a very long lived PHP web application project, is custom (self made) framework better than (open source) popular frameworks?
For a project that's going to live/used/maintained by the developer for a very long time (ex: 20-50 year); Is custom (self made) framework better than (open source) popular frameworks? Basically my ...
2votes
2answers
184views
Should I rewrite a large portion of code to make it more organized for my web application? [closed]
I've been working on a LAMP application(a social network), and am about 4000 lines of code in, and have a working prototype. I learned PHP this way, and thus it isn't programmed very well, and am now ...
3votes
1answer
522views
Procedural PHP Framework Concept
So I had this idea to map my framework's folder structure to namespaces with a dynamic build process. To give you an idea how this would work here an example structure: src/ FS/ File/ ...
-1votes
1answer
337views
PHP framework advice needed [closed]
I started PHP programming around 2002, when there were not that many frameworks around. Over the years, I developed my own PHP framework, which seems to be entirely different from any standard I come ...
0votes
2answers
540views
Storing and retrieving simple data within a framework
I'm determined to get a decent answer to this, because while I have my own approach (constants) I'm not convinced I'm doing it as efficiently as I could be. So I'm editing the entire question, to ...
1vote
1answer
264views
PHP as a target language [closed]
Are there stable well tested SDKs (as opposed to simple language converters) that allow you to develop your application in some decent language (I believe it is widely accepted that PHP is not a well ...
1vote
2answers
259views
How should I connect to my php framework to use methods written in the framework, in a framework agnostic environment?
My company runs 2 websites, a public facing website for clients, and an employee intranet. The intranet is used as a backend for employees to edit and maintain various parts of the public website. ...
7votes
5answers
9kviews
Programming PHP without MVC, classes or framework: rewrite or continue on new features?
I have been programming for several years now, and back then (learning PHP) I've didn't learn to program using classes, MVC-logic or using any frameworks. I found my self solving my problems very well ...
3votes
6answers
3kviews
How do you handle multiple developer configuration in a project?
I've been thinking lately about how I handle config changes between multiple developers on a project. Specifically here about a Laravel project in PHP, but I guess this applies largely to all ...
7votes
6answers
16kviews
Are frameworks used for "big" websites?
I'm kind of new to PHP. I can create basic sites with login/registration, etc., but I always struggle to build complex sites with lots of features, because eventually the code becomes messy and I just ...
-1votes
1answer
175views
write my own or choose a framework for link sharing website [closed]
I'm a PHP programmer and I've done any projects based on PHP and MySQL without using any framework so far. Now I'm going to create a big link sharing system (excel-able,modular,fast,theme based,...
1vote
1answer
3kviews
Are there any large scale enterprise frameworks for PHP
I'm curious if there are any commonly used large enterprise frameworks for PHP that would be your whole or most of your environment if you were working in PHP. Something comparable to ASP.NET's ...
1vote
1answer
541views
Is this an MVC framework?
I have built a framework for my applications that has been working well, and I have always referred to it in my mind as an MVC. However, after reading some more on what an MVC is (not that I didn't to ...
8votes
5answers
4kviews
Most MVC-strict php framework [closed]
I have been trying to wrap my head around MVC pattern for about 6 months.I've read tons of articles, Q&A, and blog posts about MVC and HMVC patterns, but I just simply don't get it 100%. I tried ...